home *** CD-ROM | disk | FTP | other *** search
/ Yellows - Privacy (Deluxe) / Akira Gomi Photographs - Yellows: Privacy (Deluxe) - Disc 1.iso / footage / pict04.dxr / 00020.ls < prev    next >
Encoding:
Text File  |  1996-07-10  |  585 b   |  28 lines

  1. global pict, precast, movieshow, moviepos, movieprepos, leftclist, rightclist, ctime, g_pause, womannum
  2.  
  3. on startMovie
  4.   speedshow()
  5.   set movieshow to 0
  6.   set movieprepos to moviepos
  7.   set precast to "1"
  8.   set ctime to 0
  9.   init()
  10.   set g_pause to 0
  11. end
  12.  
  13. on speedshow
  14.   global delaytime
  15.   repeat with i = 45 to 47
  16.     set the visible of sprite i to 0
  17.   end repeat
  18.   if delaytime = 120 then
  19.     set the visible of sprite 45 to 1
  20.   end if
  21.   if delaytime = 60 then
  22.     set the visible of sprite 46 to 1
  23.   end if
  24.   if delaytime = 30 then
  25.     set the visible of sprite 47 to 1
  26.   end if
  27. end
  28.